home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / MasteringDetails / EOFExtensions.subproj / ValueForKey.h < prev    next >
Encoding:
Text File  |  1995-02-18  |  323 b   |  11 lines

  1. /* ValueForKey.h - A single value-at-a-time cover for the KeyValueCoding Protocol */
  2. // Object at a time convenience covers for takeValuesFromDictionary and valuesForKeys.
  3.  
  4. #import <eoaccess/eoaccess.h>
  5.  
  6. @interface NSObject (valueForKey)
  7. - valueForKey:(NSString *)key;
  8. - (void)takeValue:value forKey:(NSString *)key;
  9. @end
  10.  
  11.